home *** CD-ROM | disk | FTP | other *** search
/ Creative Computers / Creative Computers CD-ROM, Volume 1 (Legendary Design Technologies, Inc.)(1994).iso / commercial / inovatronics / edgedemo / edgeeditor / rexx / menu_evaluate.edge < prev    next >
Text File  |  1994-11-17  |  465b  |  24 lines

  1. /*
  2. ** $VER: Menu_Evaluate.edge 1.0 (Friday 22-Oct-93 12:55:22)
  3. **
  4. ** Cut, Evaluate and Type the result of the current block
  5. **
  6. ** Written by Thomas liljetoft & Inovatronics
  7. */
  8.  
  9. options results
  10.  
  11. /* cut the current block into the result buffer */
  12. cut resultbuff
  13. if rc==0 then do
  14.     
  15.     /* prepare and then interpret the value */
  16.     value="value=" result
  17.     interpret value
  18.     
  19.     /* if there were no errors then type the result */
  20.     if rc==0 then do
  21.         text """"value""""
  22.     end
  23. end
  24.